home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v7n14.arc / FIG6.TXT < prev    next >
Encoding:
Text File  |  1988-08-06  |  433 b   |  24 lines

  1. struct    _attrs
  2. {
  3.     unsigned reserved : 2;
  4.     unsigned is_archivable : 1;
  5.     unsigned is_dir : 1;
  6.     unsigned is_label : 1;
  7.     unsigned is_system : 1;
  8.     unsigned is_hidden : 1;
  9.     unsigned is_readonly : 1;
  10. };
  11.  
  12. struct _files
  13. {
  14.     char filename[80];
  15.     struct _attrs attribute;
  16. } files[MAXFILES];
  17.  
  18.     .
  19.     .
  20.     if(files[i].attribute.is_readonly)
  21.         printf("\nFile is READ ONLY");
  22.     .
  23.     .
  24.